.contacts-section{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.section-title{
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contacts-wrapper {
  border-radius: 20px;
  padding: 30px;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}

.contacts-wrapper p{
  font-size: 14px;
  color: var(--text-light);
  max-width: 500px;
  margin-right: 20px;
}


.contact-box:hover p {
  transition: all 0.3s ease;
  color: var(--primary-color);
}


.contact-box a{
  padding: 10px;  
  background-color: #f0eeff;
  border-radius: 30px;
}

.contact-box img{
  width: 30px;
  box-sizing: border-box;
  filter: invert(31%) sepia(99%) saturate(1473%) hue-rotate(181deg) brightness(90%) contrast(90%);
}

.contact-box{
  display: flex;
  align-items: center;
  gap: 15px;
}

.maps-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-self: center;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-info h3{
  font-weight: 500;
}
.contact-info p{
  color: var(--text-light); 
   font-size: 14px;
   padding: 0px !important;
}
iframe{
  border-radius: 30px;
  width: 100%;
  max-width: 1200px;
}
.form-container {
  width: 50%;
  margin: 0 auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.form-container h3 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
textarea,
input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #d1d1d6;
  border-radius: 12px;
  background-color: #f9f9fa;
  font-size: 16px;
  transition: all 0.3s ease;
}
textarea,
input:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(0, 122, 255, 0.3);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

@media screen and (max-width: 765px) {
  .contacts-wrapper {
    width: 100%;
    padding: 15px;
  }
   .contacts-section{
    display: flex;
    flex-direction: column;
   }
   form{
    padding: 30px;
   }
   .form-container{
    padding: 30px 0;
    width: 100%;
   }

   

.card-wrapper{
  display: flex;
  flex-direction: column !important;
  gap: 20px;
}
}
.card-wrapper{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

